home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
etc
/
acpi
/
suspend.d
/
90-framebuffer-stop.sh
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
2009-03-27
|
231 b
|
15 lines
#!/bin/sh
# Make sure the backlight goes off
if [ x$USE_DPMS = "xtrue" ]; then
vbetool dpms off
fi
# SHUT UP FRAMEBUFFER
for x in /sys/class/graphics/*; do
if [ -f $x/state ]; then
echo -n 1 >$x/state;
fi
done